home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 16 / IOPROG_16.ISO / soft / macaxsdk / macsdk.hqx / ActiveX DR3 SDK / ActiveX SDK / Sample Containers / ActiveXApp / CActiveXInfo.h / CActiveXInfo.h
Encoding:
Text File  |  1997-06-25  |  569 b   |  22 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    CActiveXInfo.h                     ⌐1996 Metrowerks Inc. All rights reserved.
  3. // =================================================================================
  4.  
  5. #ifndef _H_CActiveXInfo
  6. #define _H_CActiveXInfo
  7. #pragma once
  8.  
  9. class CActiveXInfo : public LView 
  10. {
  11. public:
  12.     enum { class_ID = 'Info' };
  13.  
  14.     static CActiveXInfo *    CreateActiveXInfoStream( LStream *inStream );
  15.                         CActiveXInfo( LStream *inStream );
  16.     virtual                ~CActiveXInfo();
  17.  
  18.     virtual void        SetUserCon(Int32 inUserCon);
  19.  
  20. };
  21.  
  22. #endif